home *** CD-ROM | disk | FTP | other *** search
- global gCDPath, gSep, currFrontWindow, QTWindowRect
-
- on moveTBWindowList
- global QTWindowRect
- set windowCount to count(the windowList)
- if windowCount > 0 then
- repeat with X = 1 to windowCount
- set closeWin to string(getAt(the windowList, X))
- set currWinRect to the rect of value(closeWin)
- set checkRect to intersect(QTWindowRect, currWinRect)
- if checkRect = rect(0, 0, 0, 0) then
- next repeat
- end if
- tell the stage
- moveToBack(value(closeWin))
- end tell
- end repeat
- end if
- end
-
- on setupCurrWindow
- if not voidp(currFrontWindow) and not (currFrontWindow = EMPTY) then
- moveToFront(window currFrontWindow)
- if currFrontWindow = "notePad" then
- tell window currFrontWindow
- doInstallMenuNP()
- end tell
- end if
- end if
- end
-
- on cWindowlist
- set windowCount to count(the windowList)
- if windowCount > 0 then
- repeat with X = 1 to windowCount
- set forgetWin to string(getAt(the windowList, X))
- tell the stage
- close(value(forgetWin))
- end tell
- end repeat
- set the windowList to []
- end if
- end
-
- on clearMIAWStuff
- set currFrontWindow to EMPTY
- end
-